home *** CD-ROM | disk | FTP | other *** search
- <?php
-
- // Update variables as needed...
-
- $mail_to ="someone@yourdomain.com";
- $mail_subject = "Hi there!";
- $mail_body = "Nice to see you are practicing
- your PHP. Btw don't forget to look
- in our help section for more tips";
-
- if(mail($mail_to, $mail_subject, $mail_body)){
- echo "Successfully sent the e-mail \"$mail_subject\" to $mail_to.";
- } else {
- echo "Failed to send the e-mail \"$mail_subject\".";
- }
- ?>
-